home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / ClipWarnDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  731 b   |  25 lines  |  [TEXT/KAHL]

  1. /* ClipWarnDialog.h */
  2.  
  3. #ifndef Included_ClipWarnDialog_h
  4. #define Included_ClipWarnDialog_h
  5.  
  6. /* ClipWarnDialog module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Numbers */
  12. /* DataMunging */
  13. /* Alert */
  14. /* Memory */
  15.  
  16. /* present a dialog box detailing how much clipping occurred.  the DontTellHowToFix */
  17. /* parameter determines whether the inverse volume correction will be displayed. */
  18. void                                    ClipWarnDialog(long ClippedSampleCount, long TotalSampleCount,
  19.                                                 double MaxExtent, double Correction, MyBoolean DontTellHowToFix);
  20.  
  21. /* present a dialog box detailing how much clamping occurred and how to fix it. */
  22. void                                    ClampWarnDialog(float Clamping, double Correction);
  23.  
  24. #endif
  25.